home *** CD-ROM | disk | FTP | other *** search
/ InterCD 2002 January / january_2002.iso / Piposh Special / Piposh / STRTGAME.DXR / 00234.ls < prev    next >
Encoding:
Text File  |  2004-12-07  |  675 b   |  27 lines

  1. on stonecold
  2.   global soundspathstart, gWinDriveLetter, installpath, cdpath, effectspath, fxpath
  3.   installpath = the moviePath
  4.   fxpath = the moviePath & "fx\"
  5.   effectspath = the moviePath & "fx\"
  6.   if the machineType = 256 then
  7.     getWinInfo()
  8.     soundspathstart = gWinDriveLetter & ":\sounds\"
  9.     cdpath = gWinDriveLetter & ":\"
  10.   else
  11.     getMacDiscInfo()
  12.   end if
  13. end
  14.  
  15. on getWinInfo
  16.   go("option1")
  17. end
  18.  
  19. on getMacDiscInfo
  20.   global soundspathstart, gWinDriveLetter, installpath, cdpath, effectspath, fxpath
  21.   installpath = the moviePath
  22.   fxpath = the moviePath & "fx:"
  23.   effectspath = the moviePath & "fx:"
  24.   soundspathstart = "dream:sounds:"
  25.   cdpath = "dream:"
  26. end
  27.